convert string to number C#

40

how to parse a string to an integer c# -

    string str = "10s";
 
    int x = Convert.ToInt32(str);
	Console.WriteLine(x);

c# how to convert string to int -

string str = "100";
int x = Int32.Parse(str); // or int.Parse();
Console.WriteLine(x);

convert string to number C# -

int x = 0;

Int32.TryParse(TextBoxD1.Text, out x);

Comments

Submit
0 Comments